home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Science / RLaB / help / tanh < prev    next >
Text File  |  1994-04-25  |  634b  |  34 lines

  1. trig:
  2.  
  3. Syntax:    acos ( A )
  4.  
  5.     asin ( A )
  6.  
  7.     atan ( A )
  8.  
  9.     atan2 ( X , Y )
  10.  
  11.     cos ( A )
  12.  
  13.     cosh ( A )
  14.  
  15.     sin ( A )
  16.  
  17.     sinh ( A )
  18.  
  19.     tan ( A )
  20.  
  21.     tanh ( A )
  22.  
  23. Description:
  24.  
  25.     RLaB trigonometric functions are designed to take scalars, and
  26.     matrices as arguments. The return value is the input argument
  27.     with the trigonometric operation performed element by element.
  28.  
  29.     atan2() takes two arguments, which are the y, and x values
  30.     used to form the tangent. All the trigonometric functions use
  31.     the C language math library functions, so details about the
  32.     ranges and error conditions can be found by examining the
  33.     appropriate man pages on your system.
  34.